home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 May / CMCD0504.ISO / Software / Freeware / Programare / dspack / DSPACK231.exe / {app} / Demos / D5 / Demos.bpg
Encoding:
Borland Project Group  |  2002-12-21  |  1.4 KB  |  49 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = Compressor.exe Project1.exe DVDPlay.exe FilterEnum.exe NullIP.dll \
  13.   NullNull.ax WaveDest.ax PlayCap.exe playwin.exe SnapShot.exe
  14. #------------------------------------------------------------------------------
  15. default: $(PROJECTS)
  16. #------------------------------------------------------------------------------
  17.  
  18. Compressor.exe: Compress\DIVX Compressor\Compressor.dpr
  19.   $(DCC)
  20.  
  21. Project1.exe: Compress\File Recompressor\Project1.dpr
  22.   $(DCC)
  23.  
  24. DVDPlay.exe: DVDPlay\DVDPlay.dpr
  25.   $(DCC)
  26.  
  27. FilterEnum.exe: Filter Enumerator\FilterEnum.dpr
  28.   $(DCC)
  29.  
  30. NullIP.dll: Filters\NullIP\NullIP.dpr
  31.   $(DCC)
  32.  
  33. NullNull.ax: Filters\NullNull\NullNull.dpr
  34.   $(DCC)
  35.  
  36. WaveDest.ax: Filters\WaveDest\WaveDest.dpr
  37.   $(DCC)
  38.  
  39. PlayCap.exe: PlayVideoCap\PlayCap.dpr
  40.   $(DCC)
  41.  
  42. playwin.exe: PlayWin\playwin.dpr
  43.   $(DCC)
  44.  
  45. SnapShot.exe: SampleGrabber\SnapShot.dpr
  46.   $(DCC)
  47.  
  48.  
  49.